Fixing start date for Cobrowse sessions
1. Open the webChat.js file and locate the notifyNewPagePushMessage function.
2. Replace the following lines:
    // show the Co-Browsing notification
    dateMessage = 'System: (' + sentDate.toLocaleTimeString() + ')';
With these ones:
    // show the Co-Browsing notification
    dateMessage = 'System: (' + new Date().toLocaleTimeString() + ')';

Closing websocket if Agent closed contact while customer refreshing page
1.Open the webChatSocket.js file
2.Locate the "parseErrorMessage" function
3.Insert the line "chatConfig.dontRetryConnection = true;" before "chatSocket.clearRefresh();"
4.Insert the lines: 
		if (webSocket !== undefined){
            webSocket.close();
        }
		after "chatSocket.clearRefresh();"